home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.1 / Amiga Developer CD v1.1 - May 1996 (1996)(Schatztruhe)[!].iso / Contributions / IAM / Networking / Envoy-2.0 / obs / Realms < prev    next >
Text File  |  1994-12-22  |  4KB  |  97 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        *
  3.  *  $Id: Realms 1.2 1994/12/06 14:08:47 heinz Exp $
  4.  *                                                                        */
  5. /*------------------------------------------------------------------------*/
  6.  
  7. Using Envoy in Internetworked situations
  8. ----------------------------------------
  9.  
  10. If you are using Envoy in a situation where machines are on different
  11. physical networks, you will need to configure NIPC to use Realms. If
  12. all of your machines are on the same network, you may ignore the rest
  13. of this file.
  14.  
  15.  
  16. What is a Realm?
  17. ----------------
  18.  
  19. A realm is a collection of one or more physical networks that are
  20. set up to act as one logical network.  This is done by having a
  21. single machine extend NIPC's inquiry capabilites to multiple
  22. physical networks.
  23.  
  24. To accomplish this, the machine that is to be designated as a
  25. Realm Server has to be provided with a list of the network addresses
  26. of all networks within a Realm.  Consider the diagram below.
  27.  
  28.  
  29. Backbone Network (135.7.10.0)
  30. ----------------+-------------------------------+-------------------
  31.                 |                               |
  32.                 |                               |
  33.                 +- Harley (135.7.11.2)          |
  34.                 |                               |
  35.       Kawasaki -+                               +- Chrysler (135.7.12.3)
  36.                 |                               |
  37.                 +- Yamaha              Pontiac -+
  38.                 |                               |
  39.          Honda -+                               +- Saturn
  40.                 |                               |
  41.                 |                               |
  42.                 |                               |
  43.                 |                               |
  44.                 |                               |
  45.                 |                               |
  46.                 |                               |
  47.                 |                               |
  48.         Subnet (135.7.11.0)             Subnet (135.7.12.0)
  49.  
  50.  
  51. On this network, a subnet mask of 255.255.255.0 is beging used, so
  52. that the first three bytes of the IP address are used to designate each
  53. physical network.
  54.  
  55. If you wanted the two networks 135.7.11.0 and 135.7.12.0 to act as a
  56. single Realm named Vehicles, you would choose a machine to act as the
  57. Realm Server.   This machine may be on either network, or may even be
  58. on a different network altogether, as long as all of the machines on
  59. both networks are able to communicate with it.  For simplicity, we'll
  60. choose Harley to be the Realm Server.
  61.  
  62. To configure this, you will first need to run the NIPC configuration
  63. utility on Harley.  Swith to the Realm Configuration panel, where you
  64. will see two listview gadgets.
  65.  
  66. What you would need to do is add two entries to the lefthand listview
  67. with the following information:
  68.  
  69.         Vehicles 135.7.11.0
  70.         Vehicles 135.7.12.0
  71.  
  72. "Vehicles" should be entered into the lefthand string gadget, and
  73. the network addresses should be entered into the rightand string
  74. hadget.
  75.  
  76. Now, for each machine on both networks, you must run the NIPC configuration
  77. program, and on the first panel, set the Realm Name to "Vehicle" and the
  78. Realm Server Address to 135.7.11.2.  (This should also be done on Harley).
  79.  
  80. The Remote Realms listview is used for informing a Realm Server of Realms
  81. that are being controlled by other machines.  For example, if you decided
  82. that you had a third network with an address of 135.7.13.0 and wanted to
  83. have it called "Boats", you could add an Entry to the Remote Realms listivew
  84. similar to the following:
  85.  
  86.         Boats   135.7.13.5
  87.  
  88. Where 135.7.13.5 is the IP address of the machine that is controlling the
  89. Boats Realm.  Likewise, that machine should have an entry for "Vehicles"
  90. in it's list of Remote Realms that looked like this:
  91.  
  92.         Vehicles 135.7.11.2
  93.  
  94. Where 135.7.11.2 is the address of Harley.
  95.  
  96.  
  97.